.wc-video-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.wc-video-player {
    width: 100%;
    display: block;
}

.video-placeholder {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.paywall-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.unlock-button {
    background: #2196f3;
    color: white !important;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none !important;
    display: inline-block;
}

.unlock-button:hover {
    background: #1976d2;
}

.wc-video-progress-bar {
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    position: relative;
    margin-top: -4px;
}

.wc-video-progress-bar .progress-inner {
    height: 100%;
    background: #2196f3;
    transition: width 0.3s ease;
    width: 0;
}